home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / extras / programm / gemfsc20 / gemfsc20.lzh / GEMFUNCS / FRMPRTF.C < prev    next >
C/C++ Source or Header  |  1993-02-01  |  554b  |  26 lines

  1. /**************************************************************************
  2.  * FRMPRTF.C - frm_printf() function.
  3.  *************************************************************************/
  4.  
  5. #include "gemfintl.h"
  6.  
  7. #ifdef GEMFAST_PROTOS
  8.   short frm_printf(long options, char *buttons, char *fmt, ...)
  9. #else
  10.   short frm_printf(options, buttons, fmt)
  11.     long    options;
  12.     char    *buttons;
  13.     char    *fmt;
  14. #endif
  15. {
  16.     va_list args;
  17.     short    rv;
  18.  
  19.     va_start(args, fmt);
  20.     rv = frm_vprintf(options, buttons, fmt, args);
  21.     va_end(args);
  22.  
  23.     return rv;
  24. }
  25.  
  26.